From: Julien Grall Date: Sat, 20 Jun 2015 11:37:13 +0000 (+0100) Subject: docs: Look for documentation in sub-directories X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~3036 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=6592bf6;p=xen.git docs: Look for documentation in sub-directories The ARM documentation is living in a specific folder under misc. Until now, it was skipped during building. In order to avoid missing future directory, use find to look for a specific file pattern through all the directory. Note the we already use find in other Makefile. Signed-off-by: Julien Grall Acked-by: Ian Campbell --- diff --git a/docs/Makefile b/docs/Makefile index 60bc54100a..0ee6808ade 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -7,16 +7,16 @@ VERSION := $(shell $(MAKE) -C $(XEN_ROOT)/xen --no-print-directory xenversion) DOC_ARCHES := arm x86_32 x86_64 # Documentation sources to build -MAN1SRC-y := $(sort $(wildcard man/xl*.pod.1)) -MAN1SRC-y += $(sort $(wildcard man/xenstore*.pod.1)) +MAN1SRC-y += $(sort $(shell find man -name 'xl*.pod.1' -print)) +MAN1SRC-y += $(sort $(shell find man -name 'xenstore*.pod.1' -print)) -MAN5SRC-y := $(sort $(wildcard man/xl*.pod.5)) +MAN5SRC-y := $(sort $(shell find man 'xl*.pod.5' -print)) -MARKDOWNSRC-y := $(sort $(wildcard misc/*.markdown)) +MARKDOWNSRC-y := $(sort $(shell find misc '*.markdown' -print)) -TXTSRC-y := $(sort $(wildcard misc/*.txt)) +TXTSRC-y := $(sort $(shell find misc -name '*.txt' -print)) -PANDOCSRC-y := $(sort $(wildcard specs/*.pandoc)) +PANDOCSRC-y := $(sort $(shell find specs -name '*.pandoc' -print)) # Documentation targets DOC_MAN1 := $(patsubst man/%.pod.1,man1/%.1,$(MAN1SRC-y))